
.main-nav {
  background: #111;
  color: #fff;
  font-family: 'Segoe UI', Arial, sans-serif;
  position: sticky;
  top: 0;
  z-index: 1020;  /* Plus élevé que le reste du contenu */
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 1.5em;
  height: 70px;
}
.logo {
  font-weight: bold;
  font-size: 1.3em;
  letter-spacing: 1px;
  margin-right: 2.5em;
  min-width: 90px;
}
.nav-toggle {
  display: none;
  background: transparent;
  color: #fff;
  font-size: 2em;
  border: none;
  margin-left: auto;
  cursor: pointer;
}
.nav-list {
  display: flex;
  flex: 1 0 0;
  justify-content: center;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-list > li {
  position: relative;
  padding: 0 1.1em;
}
.nav-list > li:not(:last-child) { border-right: 1px solid #222; }
.has-dropdown > span {
  cursor: pointer;
}

.nav-list > li a {
  text-decoration: none;   /* enlève le soulignage */
  color: #FFFFFF;          /* garde ta couleur de texte */
}

.nav-list > li a:hover {
  text-decoration: none;   /* pas de soulignage au survol non plus */
  color: #AAAAAA;          /* ou la couleur de survol que tu veux */
}


/* Dropdown centré */
.dropdown {
  display: none;
  background: #181818;
  color: #fff;
  position: absolute;
  left: 50%;
  top: 100%;  
  transform: translateX(-50%);
  min-width: 350px;
  box-shadow: 0 8px 24px #0004;
  z-index: 20;
  flex-direction: row;
  font-size: 0.97em;
  padding: 1em 1.5em;
}
.has-dropdown:hover > .dropdown,
.has-dropdown.open > .dropdown {
  display: flex;
}
.dropdown > li {
  margin: 0 1.5em 0 0;
  min-width: 180px;
}
.dropdown strong { display: block; margin-bottom: 0.4em; color: #ddd; font-size: 1em; }
.dropdown ul { margin: 0; padding: 0; list-style: none; }
.dropdown ul li { margin-bottom: 8px; color: #bbb; }
.dropdown ul .badge {
  background: #fff;
  color: #222;
  font-size: 0.8em;
  border-radius: 5px;
  padding: 0 5px;
  margin-left: 5px;
}
.dropdown ul .app { color: #fff; font-weight: 600; }
.dropdown ul .desc { display: block; font-size: 0.9em; color: #aaa; margin-top: 1px; }
.cta {
  background: #fff;
  color: #111 !important;
  padding: 0.3em 1em;
  border-radius: 5px;
  margin-left: 8px;
}

@media (max-width: 900px) {
  .nav-inner {
    flex-direction: row;
    height: auto;
    padding: 0 0.7em;
  }
  .logo {
    margin-right: auto;
  }
  .nav-toggle {
    display: block;
    margin-left: 0.5em;
    z-index: 1010;
  }
  .nav-list {
    position: absolute;
    left: 0;
    top: 70px;
    width: 100%;
    background: #181818;
    flex-direction: column;
    display: none;
  }
  .nav-list.open { display: flex; }
  .nav-list > li {
    border-right: none;
    border-bottom: 1px solid #222;
    padding: 1em;
  }
  .dropdown {
    position: static;
    min-width: unset;
    width: 100%;
    flex-direction: column;
    box-shadow: none;
    padding: 1em 0.5em;
    left: 0;
    transform: none;
  }
}

/* Couleur liens menu principal */
.nav-list > li a,
.nav-list > li span { color: #FFFFFF; }

/* Couleur liens sous-menu */
.dropdown ul li,
.dropdown ul li a { color: #FDB10D; }

/* Couleur au survol */
.nav-list > li a:hover,
.nav-list > li span:hover,
.dropdown ul li:hover,
.dropdown ul li a:hover { color: #AAAAAA; }

/* -------------------------------------------------------------------------------------*/
/* ------------------------- Video Banner ----------------------------------------------*/
/* -------------------------------------------------------------------------------------*/

    .banner-video {
      position: relative;
      width: 100%;
      height: 100vh;
      overflow: hidden;
      background: url('images/banner/rayzor-series.jpg') no-repeat center center;
      background-size: cover;
    }

    .banner-video video {
      position: absolute;
      top: 50%;
      left: 50%;
      min-width: 100%;
      min-height: 100%;
      transform: translate(-50%, -50%);
      object-fit: cover;
      z-index: 1;
    }

    /* Superposition sombre réglable */
    .overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.4); /* ← modifie ici l'intensité (0 = transparent, 1 = noir complet) */
      z-index: 2;
    }

    .banner-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  z-index: 3;
  animation: slideUp 1s ease-out both;
}
	  
    .banner-content h1 {
      margin-bottom: 20px;
    }

    .banner-buttons {
      display: flex;
      justify-content: center;
      gap: 15px;
      flex-wrap: wrap;
    }

   .banner-buttons a {
  padding: 12px 24px;
  background-color: transparent;
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  border: 2px solid #ccc;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.banner-buttons a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}
@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translate(-50%, 20%);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}




